9b9d2809f41c4f8e50e6b214d146538a0cb907aa,rxnetty-examples/src/main/java/io/reactivex/netty/examples/http/sse/HelloSseServer.java,HelloSseServer,main,#String[]#,33

Before Change


        }

        /*Assign the ephemeral port used to a field so that it can be read and used by the caller, if any.*/
        serverPort = server.getServerPort();
    }
}

After Change


        }

        /*Assign the ephemeral port used to a field so that it can be read and used by the caller, if any.*/
        setServerPort(server.getServerPort());
    }
}